1 package net.sf.flock.support;
2
3 import junit.framework.Test;
4 import junit.framework.TestSuite;
5
6 /***
7 * @version $Revision: 1.3 $
8 * @author $Author: phraktle $
9 */
10 public class AllTests {
11
12 public static Test suite() {
13 TestSuite suite = new TestSuite("Test for net.sf.flock.support");
14 //$JUnit-BEGIN$
15 suite.addTest(new TestSuite(OpmlSubscriptionImportTest.class));
16 //$JUnit-END$
17 return suite;
18 }
19 }
This page was automatically generated by Maven